home *** CD-ROM | disk | FTP | other *** search
- -- Copyright (c) 1991 by Oracle Corporation
- -- NAME
- -- ulcase6.ctl - <one-line expansion of the name>
- -- DESCRIPTION
- -- <short description of component this file declares/defines>
- -- RETURNS
- --
- -- NOTES
- -- <other useful comments, qualifications, etc.>
- -- MODIFIED (MM/DD/YY)
- -- xxxxxx 01/19/95 - merge changes from branch 1.2.710.1
- -- xxxxxxxx 02/21/94 - specify sorted indexes
- -- xxxxxxxx 11/06/92 - infile is ulcase6
- -- xxxxxxxx 08/28/91 - Creation
- --
- -- $Header: ulcase6.ctl 7020200.2 95/03/10 21:55:55 cli Generic<base> $
- --
- load data
- infile 'ulcase6.dat'
- replace
- into table emp
- sorted indexes (empix)
- (empno position(1:4) nullif empno=blanks,
- ename position(6:15),
- job position(17:25),
- mgr position(27:30) nullif mgr=blanks,
- sal position(32:39) nullif sal=blanks,
- comm position(41:48) nullif comm=blanks,
- deptno position(50:51) nullif empno=blanks)
-